home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ctutor2 / formout.c < prev    next >
Text File  |  1986-05-27  |  384b  |  16 lines

  1. #include "stdio.h"
  2. main()
  3. {
  4. FILE *fp;
  5. char stuff[25];
  6. int index;
  7.  
  8.    fp = fopen("TENLINES.TXT","w");   /* open for writing */
  9.    strcpy(stuff,"This is an example line.");
  10.  
  11.    for (index = 1;index <= 10;index++)
  12.       fprintf(fp,"%s  Line number %d\n",stuff,index);
  13.  
  14.    fclose(fp);    /* close the file before ending program */
  15. }
  16.